home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 224_01 / cat.hlp < prev    next >
Text File  |  1987-01-04  |  2KB  |  47 lines

  1. NAME
  2.      cat - concatenate and print
  3.  
  4. SYNTAX
  5.      cat [-b] [-e] [-n] [-s] [-t] [-v]  file...
  6.  
  7. DESCRIPTION
  8.      Cat reads each file in sequence and displays it on the standard output.
  9.      Thus
  10.                     cat file
  11.  
  12.      displays the file on the standard output, and
  13.  
  14.                     cat file1 file2 >file3
  15.  
  16.      concatenates the first two files and places the result on the third.
  17.  
  18.      If no input file is given, or if the argument '-' is encountered, 
  19.      cat reads from the standard input file.  Output is line buffered.
  20.  
  21.      The -b option ignores blank lines and precedes all other output with 
  22.      line numbers.
  23.  
  24.      The -e option displays a dollar sign ($) at the end of each output line.
  25.  
  26.      The -n option precedes all output lines (including blank lines) with 
  27.      line numbers.
  28.  
  29.      The -s option squeezes adjacent empty lines so that the output is 
  30.      displayed single spaced.
  31.  
  32.      The -t option displays all non-printing characters including tabs in the 
  33.      output.  In addition to those representations used with the -v option, 
  34.      all tab characters are displayed as ^I.
  35.  
  36.      The -v option displays non-printing characters (except tabs).  
  37.      <CTRL/x> (control character x) prints as ^X.  The delete character 
  38.      (octal 0177) prints as ^?.  Non-ascii characters (with the high bit set) 
  39.      are printed as M- (for meta) followed by the character of the low 7 bits.
  40.  
  41. SEE ALSO
  42.      head, more, pr, tail
  43.  
  44. RESTRICTIONS
  45.      Beware of 'cat a b >a' and 'cat a b >b', which destroy the input files 
  46.      before reading them.
  47.